home *** CD-ROM | disk | FTP | other *** search
/ Adventures with Oslo: Tools & Gadgets / Adventures with Oslo - Tools and Gadgets.ISO / mac / Ad / Mod03 / tnldoor / 00011.ls < prev    next >
Encoding:
Text File  |  1994-09-23  |  370 b   |  17 lines

  1. on check thisList
  2.   set total to 0
  3.   if getOne(thisList, "pick") <> 0 then
  4.     set total to total + 1
  5.   end if
  6.   if getOne(thisList, "pointy shovel") <> 0 then
  7.     set total to total + 1
  8.   end if
  9.   if getOne(thisList, "drill") <> 0 then
  10.     set total to total + 1
  11.   end if
  12.   if getOne(thisList, "ladder") <> 0 then
  13.     set total to total + 1
  14.   end if
  15.   return total
  16. end
  17.